home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 101-125 / scopedisk116 / clockdj / clockdj.doc < prev    next >
Text File  |  1995-03-19  |  35KB  |  1,342 lines

  1.  
  2. ClockDJ   - Assembly language clock, mouse, screen and window program.
  3. Version   - 4.12
  4. Copyright - Copyright (c) by David Jenkins, 21st February 1990,
  5.             I can be reached at Bloom Beacon 416-283-5924,
  6.                         and CRS   416-629-0136.
  7.  
  8.      This program is copyright but may be distributed freely. Please keep the
  9. documentation with the load module.
  10.  
  11. Version 4.12
  12. ~~~~~~~~~~~~
  13.  
  14.     Snap 1.4 will insert a ">" in the data stream when the
  15. LeftAmiga LeftShift and left mouse button are pressed. I have,therefore,
  16. removed the code to this in ClockDJ V4.12.
  17.  
  18. Version 4.11
  19. ~~~~~~~~~~~~
  20.  
  21.     A couple of bugs have been cleaned up in this release.
  22.  
  23.  
  24. Version 4.10
  25. ~~~~~~~~~~~~
  26.  
  27. 1. The key reading and parsing routines were re-vamped in
  28.    V4.09 with the result that any extra characters (including  blanks)
  29.    at the end of a macro definition would cause the *next* definition
  30.    to be invalid.
  31.  
  32.     Version 4.10 corrects this.
  33.  
  34.    This means that any characters following a macro definition will
  35.    be treated as a comment. Also any line that begins with an asterisk (*)
  36.    will be treated as a comment.
  37.  
  38.  
  39. 2. The ARexx macro which calls the Arp file requester (FILEREQUESTER)
  40.    had a bug which returned a directory when no directory or file
  41.    were selected. This is fixed.
  42.  
  43. 3. There are five new ARexx commands: SETARPDIR,  SETARPFILE, 
  44.    SETARPTITLE, SETARPCOLOUR and POPREQUESTER.
  45.  
  46.    SETARPDIR dirname
  47.    
  48.   will set the initial directory string in the  Arp file requester
  49.   to dirname.
  50.  
  51.  
  52.    SETARPFILE filename
  53.    
  54.   will set the initial file string in the  Arp file requester
  55.   to filename.
  56.  
  57.  
  58.    SETARPTITLE title
  59.  
  60.   will set the title in the  Arp file requester.
  61.  
  62.  
  63.    SETARPCOLOUR number
  64.  
  65.   will set the colour of the  Arp file requester. The number can
  66.   be 1 or 2.
  67.  
  68.  
  69.    POPREQUESTER text
  70.  
  71.   will put a requester displaying the text on the top screen with
  72.   a YES/NO choice. The selection is passed back in RESULT as YES or NO.
  73.  
  74.  
  75. Version 4.09
  76. ~~~~~~~~~~~~
  77.  
  78.     There are a number of improvements in this version:
  79.  
  80. 1. The Pop to Front menu item now has a sub-item called "Cling". If
  81.    you select this, a message will appear asking you to click in a
  82.    window. When you do, the clock will attach itself to the selected
  83.    window; the clock menu will also become a part of this window. 
  84.    Note that only windows with no existing menus or UserPort
  85.    are eligible to be selected. In practise this confines you to CLI
  86.    windows. Once the clock is attached to a window, the "Cling" menu
  87.    item is highlighted; re-selecting "Cling" will move the clock to
  88.    its own window on the Workbench screen. If you close a window
  89.    the clock is attached to, it will re-open itself on the Workbench
  90.    screen.
  91.  
  92.     If "Save" is selected when the clock is attached to a window,
  93.    the window title will be saved in the clockdj.config file. When
  94.    the clock is started, it will look for a window with this title and
  95.    attach itself to the window.
  96.  
  97.  
  98. 2. The macro definitions will allow &arf1 and &arf2 to be defined
  99.    as symbolic variables anywhere in the string fields of a macro.
  100.    This will cause the Arp file requester to be called when the
  101.    macro is invoked; the selected file name (and path) will be
  102.    substituted for the variable. Any number of &arf1 (or &arf2)
  103.    variables can be included in the string. The variable can be
  104.    specified in either command or string macros (command macros
  105.    have a "c" at the end, string macros have an "s" at the end).
  106.  
  107.     For example:
  108.  
  109.     \ral\t\type &arf2\r\c
  110.  
  111.    When RightAlt + t are pressed, submit a "type filename" command 
  112.    where "filename" is selected from the Arp file requester.
  113.     
  114.  
  115.     \ral\d\delete &arf2\r\c
  116.  
  117.    When RightAlt + d are pressed, Submit a "delete filename" command
  118.    where "filename" is selected from the Arp file requester 
  119.  
  120.     \ral\c\copy &arf2 &arf1 all\r\c
  121.  
  122.    When RightAlt + c are pressed, submit a "copy file1 file2 all" command
  123.    where file1 and file2 are selected from the Arp file requester.
  124.  
  125.     \ral\l\list &arf2\r\s
  126.  
  127.    When RightAlt + l are pressed, submit a "list filename" string
  128.    where filename are selected from the Arp file requester.
  129.  
  130.  
  131. 3. The cut and paste utility "Snap" will not insert a ">" to indicate
  132.    a quote (useful when replying to someone's message on a bulletin
  133.    board). If when pasting from Snap you hold down the LeftShift key
  134.    in addition to the LeftAmiga and Right Mouse button, you will get
  135.    ">" at the start of each line.
  136.  
  137. 4. The file reading routines for clockdj.config and clockdj.keys
  138.    have been made faster.
  139.  
  140. 5. The clock may now be started from Workbench with an icon.
  141.  
  142.  
  143. Bugs fixed:
  144. ~~~~~~~~~~~
  145.  
  146. 1. The documentation states that "kpe" is used to represent the 
  147.    Keypad Enter key. This now works as documented.
  148.  
  149. 2. An error in the key definition file could cause a guru on initial
  150.    startup. This is fixed.
  151.  
  152.  
  153. Version 4.08 
  154. ~~~~~~~~~~~~
  155.  
  156.     This version removes an incompatibility with Word Perfect which
  157. could occasionally lock up the machine.
  158.  
  159.  
  160. Version 4.07 
  161. ~~~~~~~~~~~~
  162.  
  163. 1. When flipping screens, the window under the pointer becomes
  164.    active irrespective of the Sun Mouse or Key Activate settings.
  165.  
  166. 2. A  bug in the mouse button routine has been fixed.
  167.  
  168.  
  169. Version 4.06 
  170. ~~~~~~~~~~~~
  171.  
  172.     The clock window can now be popped to the next screen
  173. immediately by holding down the left shift key while clicking the
  174. left mouse button in the clock window.
  175.  
  176.     The key re-mapping routines have been re-written; the delay
  177. parameter used when submitting a string should not now be needed (although
  178. it is still valid to specify it).
  179.  
  180.  
  181.  
  182.  
  183. WTFPATCH3
  184. ~~~~~~~~~
  185.  
  186.      The arc file contains 'WTFPATCH3', an improved version of the 
  187. WindowToFront patch. Include 'WTFPatch3' in your start-up sequence, 
  188. but make sure you remove the old version of the patch (WTFPatch) first.
  189.    
  190.  
  191.     'WTFPatch3' corrects an Intuition bug in WindoToFront and
  192. WindowToBack. To use it, simply put the 'WTFPatch3' program in your
  193. c: directory and include 'WTFPatch3' in your startup sequence.
  194.  
  195.     Previous versions of the clock had timing code designed to get
  196. around the Intuition bug. The patch is more effective and should
  197. eliminate machine lockups caused by WindowToFront. Since the timing
  198. code has been removed from V3.05 and above, you must run 'WTFPatch3' with this 
  199. version of the clock.
  200.  
  201.  
  202.  
  203. Program Description
  204. ~~~~~~~~~~~~~~~~~~~
  205.  
  206.  
  207.  
  208.      This utility combines a clock, mouse accelerator, screen blanker,
  209. window manipulator, function keys and macros. 
  210.  
  211.     The display is a  small  borderless  window  which  shows the
  212. total memory left in the system  (chip  and fast) and the time in
  213. 12 hour format. The  window  pops  to  the front of the workbench
  214. screen once every  minute. 
  215.  
  216.     You can start the program with a 'Run ClockDJ', 'Runback ClockDJ',
  217. or by clicking on a Workbench icon.
  218.  
  219. (Do NOT use  Workbench 1.3 'run >nil:' or the ARP Arun NOIO commands. 
  220. Only the RunBack in the zoo file or a RunBack to the NUL: device
  221. will work correctly in this situation). 
  222.  
  223. Using 'Runback' is useful if you want to close ALL CLI windows. If you start
  224. the clock with 'Runback', the output which is directed to the default CLI
  225. will not be seen. This is not usually a problem since this output is typically
  226. of the '[CLI 3]' variety. 
  227.  
  228.     If you use 'Runback' or the Workbench to start the program, 
  229. command macros (those ending with a '\c') MUST specify output and 
  230. input redirection to nil:. Eg.:             
  231.  
  232.     \lal\b\run <nil: >nil: blitz\r\c
  233.  
  234. If you do not do this the MACHINE WILL GURU.
  235.    
  236. If you want to start the clock with a 'run' so that the output from macros
  237. to the default CLI is preserved, but the startup CLI is to be closed,
  238. do something like this:
  239.  
  240. newcli "con:0/0/580/200/AmigaDOS " from df0:command.file
  241. endcli > nil:
  242.  
  243. "commands.file" is a file located on df0: containing the following:
  244.  
  245. run clockdj
  246.  
  247.  Starting the clock in this way preserves the file handle of the CLI
  248. which launched the clock and passes it to programs started by the macros.
  249.  
  250.  
  251.  
  252. Start-up parameters (CLI start-up only)
  253. ~~~~~~~~~~~~~~~~~~~
  254. "r" specified as the first parameter will reverse the action of the
  255. mouse buttons for the features that require both to be depressed.
  256. The default is "n", for normal operation.
  257.  
  258. The "Newcli" entry in the menu may now be changed by specifying a second
  259. parameter when starting the clock. Eg.:
  260.  
  261.         run clockdj n NewWsh con:0/0/640/150/Myname
  262.  
  263. Note that if the second parameter is specified, the first parameter must
  264. also be specified.
  265.  
  266.  
  267. Snap enhancement
  268. ~~~~~~~~~~~~~~~~
  269.  
  270.    The cut and paste utility "Snap" will not insert a ">" to indicate
  271.    a quote (useful when replying to someone's message on a bulletin
  272.    board). If when pasting from Snap you hold down the LeftShift key
  273.    in addition to the LeftAmiga and Right Mouse button, you will get
  274.    ">" at the start of each line.
  275.  
  276.  
  277.  
  278. Arp File requester
  279. ~~~~~~~~~~~~~~~~~~
  280.  
  281.    The Arp file requester can be called from a macro either alone or 
  282. as a symbolic variable within the command string. For this to
  283. work you must have V 34 of Arp.Library in your libs: directory.
  284.  
  285. To call the requester on its own, include a macro that looks like this:
  286.  
  287.    \lal\`\&arfx\r\s\2
  288.  
  289. where x is either 1 or 2. The numbers change the colour scheme
  290. of the requester,
  291.  
  292.    This will open the requester on the top screen when you press the
  293. Left-alt and ` (top left of the keyboard) together. Obviously you
  294. can make the key combination anything you want. 
  295.  
  296. When you have selected a file from the requester, the next left mouse
  297. button click  will cause the selected file (including disk and dir)
  298. to be entered into the window where you click. The character delay
  299. (2 in the above example) will be observed.
  300.   
  301. There are a couple of ways to modify the string that is generated:
  302.  
  303.     
  304. Holding down Left Shift when you click will insert a right Amiga x
  305. at the start of the characters; this is useful for clearing existing
  306. data out of a string gadget.
  307.  
  308. Holding down CTRL will submit the directory for the first mouse click
  309. and the file for the second. This is useful for filling in strings
  310. where the directory and file are in separate gadgets (in Dpaint, for 
  311. example).
  312.  
  313. Holding down CTRL+Left Shift when you click will submit the directory
  314. and file names separately and precede each with a Right Amiga x.
  315.  
  316.  
  317.  
  318. To include the requester as a variable in a command:
  319.  
  320.    The macro definitions will allow &arf1 and &arf2 to be defined
  321.    as symbolic variables anywhere in the string fields of a macro.
  322.    This will cause the Arp file requester to be called when the
  323.    macro is invoked; the selected file name (and path) will be
  324.    substituted for the variable. Any number of &arf1 (or &arf2)
  325.    variables can be included in the string. The variable can be 
  326.    specified in either command or string macros (command macros
  327.    have a "c" at the end, string macros have an "s" at the end).
  328.  
  329.     For example:
  330.  
  331.     \ral\t\type &arf2\r\c
  332.  
  333.    When RightAlt + t are pressed, submit a "type filename" command 
  334.    where "filename" is selected from the Arp file requester.
  335.     
  336.  
  337.     \ral\d\delete &arf2\r\c
  338.  
  339.    When RightAlt + d are pressed, Submit a "delete filename" command 
  340.    where "filename" is selected from the Arp file requester 
  341.  
  342.     \ral\c\copy &arf2 &arf1 all\r\c
  343.  
  344.    When RightAlt + c are pressed, submit a "copy file1 file2 all" command 
  345.    where file1 and file2 are selected from the Arp file requester.
  346.  
  347.     \ral\l\list &arf2\r\s
  348.  
  349.    When RightAlt + l are pressed, submit a "list filename" string 
  350.    where filename are selected from the Arp file requester.
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357. Window manipulation
  358. ~~~~~~~~~~~~~~~~~~~
  359.  
  360. The following can be selected from the menu or by clicking the correct
  361. combination of mouse buttons:
  362.  
  363.  
  364. 1. Screen blanking after a pre-defined period of inactivity.
  365.  
  366. 2. Pointer blanking after a pre-defined period of inactivity.
  367.  
  368. 3. Mouse accelerator.
  369.  
  370. 4. Sun mouse.
  371.  
  372. 5. Click the window to front with the left mouse button.
  373.  
  374. 6. Click the window to back by pressing the left mouse button followed by the
  375.    right mouse button, with the left button still down.
  376.  
  377. 7. Cycling through screens by pressing the right mouse button followed by the
  378.    left mouse button with the right button still down.
  379.  
  380. 8. Left-Amiga-m will shuffle screens if "Screen Cycle" is selected.
  381.  
  382.  
  383. The button sequences for 6. and 7. can be reversed by specifying the
  384. parameter "r" when starting the clock: eg:
  385.  
  386. run clockdj r
  387.  
  388.  
  389. All the above can be selected my menus and saved in the configuration
  390. file.
  391.  
  392.  
  393. Hide Window
  394. ~~~~~~~~~~~
  395. The program will allow the user to select a window and remove it
  396. from the screen while leaving the task that started it unaffected. 
  397.  
  398. To do this, point at the window you want to remove, hold the 
  399. LeftShift+LeftAmiga+Control keys down and press the left mouse button;
  400. the window should disappear. To bring the window back hold
  401. LeftShift+LeftAmiga+Control keys and press the right mouse button.
  402.  
  403. Up to 60 windows can be hidden in this way. When retrieving windows
  404. the last one removed is brought back first. A separate list of hidden windows
  405. is maintained for each screen, so only the windows for the active screen are
  406. retrieved.
  407.  
  408. I put this feature in because my workbench screen is often cluttered
  409. with small windows opened by tasks like VirusX. These windows serve no useful
  410. purpose and I decided I would like a means of removing them.
  411.  
  412. Restrictions: 
  413.  
  414. 1. CLI windows cannot be removed. Doing so confuses things and ends in a guru,
  415.    so the CLI windows are ignored when selecting a window to hide.
  416.  
  417.  
  418. 2. Some programs look at their window size; FileInjector does this. If the
  419.    small FileInjector window is hidden and the hot key sequence is used, the
  420.    resulting window is smaller than it should be. The solution is one of: don't
  421.    hide this type of window; retrieve the window before the hot key; retrieve
  422.    the window after the hot key. The last option would require a window refresh
  423.    too (move the window).
  424.  
  425. 3. You should use this feature with caution. Some programs don't expect
  426.    to have other tasks interfere with their windows and gurus can occur.
  427.    Generally, if the window holds only text then there will not be a problem.
  428.  
  429.  
  430.  
  431. Changing the window size of the clock display
  432. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  433.  
  434. The size of the clock window can be changed by hitting: 
  435. LeftShift+LeftAmiga+CTRL+up arrow or down arrow. This will allow the
  436. characters of larger fonts to be displayed correctly.
  437.  
  438. The size will be saved in the config file when "Save" is selected
  439. from the menu. 
  440.  
  441.  
  442. Moving the clock window to another screen
  443. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  444.  
  445.     The clock window can be popped to the next screen
  446. immediately by holding down the left shift key while clicking the
  447. left mouse button in the clock window.
  448.  
  449.     This feature works whatever is selected in the Pop to Front
  450. menu item.
  451.     
  452.  
  453. Menu options
  454. ~~~~~~~~~~~~
  455.  
  456. NewCLI
  457. ------
  458.  
  459. Gives you a new CLI window at the bottom of the screen.
  460.  
  461.  
  462.  
  463. Chip/Fast
  464. ---------
  465.  
  466. This option gives chip and fast memory displays separately. When selected
  467. the menu toggles to "Total Memory" to enable you to get back to a total
  468. memory display.
  469.  
  470.  
  471.  
  472. Colour
  473. -----
  474.  
  475. Allows you to select the colour of the clock display.
  476.  
  477.  
  478.  
  479. Priority
  480. --------
  481.                      
  482. The default priority of the clock is 2 which seems to work OK in most
  483. circumstances. Setting it to 0 makes it the same priority as other 
  484. tasks  started  from CLI. Making it negative gives it a lower priority
  485. than other CLI tasks. This option gives you a choice of running the clock
  486. from -3 to +4. I found the negative values useful while running a Basic
  487. drawing program: anything above -1 made the drawing process
  488. jerky.
  489.  
  490.  
  491.  
  492. Refresh
  493. -------
  494.  
  495. This is the maximum rate at which the program will update the display.
  496. The default is 5 times per second and the options allow from 10 times
  497. to once per second. I  only  do an PrintIText if something has changed,
  498. so even 10 times per second does  not  use much CPU - you can
  499. use pm to see how much.  
  500.  
  501.  
  502. Blank Screen
  503. ------------
  504.  
  505. The screen will blank after the specified time (in minutes) if there is no
  506. keyboard or mouse activity.
  507.  
  508.  
  509. Blank Pointer
  510. -------------
  511.  
  512. The mouse pointer will blank after the specified time (in seconds) if there is
  513. no mouse activity.
  514.  
  515. When the Snooze Off entry is checkmarked the pointer will not blank if it is 
  516. a snooze pointer. This can avoid having to move the mouse to
  517. see if an operation is complete when the pointer has been blanked.
  518.  
  519.  
  520. Mouse Speed
  521. -----------
  522.  
  523. Accelerates the mouse pointer. 1 is no acceleration.
  524.  
  525.  
  526.  
  527. Click to front
  528. --------------
  529.  
  530. Clicking the left mouse button in a window the specified number of
  531. times will bring it to the front.
  532.  
  533.  
  534. Click to front now gives you the option of keeping or discarding 
  535. the last of the left mouse button clicks which brings the window to front. 
  536.  
  537. There is a 'Discard' sub-menu item under 'Click to Front'. 
  538. If 'Discard' is checked the last mouse click is discarded.
  539.  
  540. The difference this option makes is mainly seen when the last
  541. mouse click is on an icon or other field you wish to select. To find
  542. out which to use, experiment.
  543.  
  544.  
  545. Click to back
  546. -------------
  547.  
  548. Click the window to back by pressing the left mouse button followed by the
  549. right mouse button the specified number of times.
  550.  
  551.  
  552. Note that this sequence can be reversed by specifying "r" as a start-up
  553. parameter
  554.  
  555.  
  556. Sun Mouse
  557. ---------
  558.  
  559. Activates the window the pointer is above without having to click the left
  560. mouse button.
  561.  
  562.  
  563.  
  564. Screen Cycle
  565. ------------
  566.  
  567.  
  568. Cycling through screens by pressing the right mouse button followed by
  569. the left mouse button with the right button still down.
  570.  
  571. Note that this sequence can be reversed by specifying "r" as a
  572. start-up parameter
  573.  
  574. The screen cycle can also be triggered by hitting Left-Amiga-m.
  575.  
  576.  
  577. Key Activate
  578. ------------          
  579.  
  580. If this feature is used, the window under the pointer will be activated
  581. when a key is depressed.
  582.  
  583. Pop to Front
  584. ------------
  585.  
  586. Selecting this item causes the clock to pop to the front of the 
  587. current screen if 'Windows' is selected, or to the top screen if
  588. 'Screens' is selected.
  589.  
  590.    The Pop to Front menu item has a sub-item called "Cling". If
  591.    you select this a message will appear asking you to click in a
  592.    window. When you do, the clock will attach itself to the selected
  593.    window; the clock menu will also become a part of this window. 
  594.    Note that only windows with no existing menus or UserPort
  595.    are eligible to be selected. In practise this confines you to CLI
  596.    windows. Once the clock is attached to a window, the "Cling" menu
  597.    item is highlighted; re-selecting "Cling" will move the clock to
  598.    its own window on the Workbench screen. If you close a window
  599.    the clock is attached to, it will re-open itself on the Workbench
  600.    screen. 
  601.  
  602.     If "Save" is selected when the clock is attached to a window,
  603.    the window title will be saved in the clockdj.config file. When
  604.    the clock is started, it will look for a window with this title and
  605.    attach itself to the window.
  606.  
  607.  
  608. Map Keys
  609. --------
  610.  
  611. When checked, the key mapping and macro functions are active.
  612.  
  613.  
  614. Load Keys
  615. ---------
  616.  
  617. Loads in a new set of key and macro definitions.
  618.  
  619.  
  620. Save
  621. ----
  622.  
  623. If you select "Save", all the current settings, including the window
  624. position, will be written to a file called "clockdj.config" in the 
  625. root directory of sys:. You should be careful to ensure that sys: is
  626. assigned to the correct disk so that the file can be read when the clock
  627. is next started.
  628.  
  629.  
  630. The next time clockdj starts it will attempt to read this file and set
  631. up the clock and associated parameters exactly as they were when you 
  632. selected "Save".
  633.  
  634. You should select this option when you are happy with the way the clock
  635. looks, and then make sure you have the disk with the clockdj program 
  636. on it assigned to sys:. 
  637.  
  638.  
  639.  
  640. Quit
  641. ----
  642.  
  643. Ends the program.
  644.  
  645.  
  646. Macros and redefining the keys
  647. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  648.  
  649. ClockDJ will allow you re-map the keyboard, substitute a string
  650. of characters for a single key depression, or execute a command when
  651. a particular key sequence is pressed. The key definitions and macros
  652. must be created by you and saved in a file; the default file read when
  653. the program starts is sys:clockdj.keys. The key definitions can be changed
  654. by selecting Load Keys from the menu.
  655.  
  656.  
  657.  
  658.    Pressing CTRL-` (the "ctrl" key and the "`" key) is an escape for
  659. the next key/mouse sequence entered. This will prevent translation or
  660. macro generation on  the next key/mouse sequence. 
  661.  
  662.  
  663.  
  664. NB. 'Map Keys' must be selected from the menu to activate the macro
  665.     function.
  666.  
  667.  
  668. The statement format is:
  669.  
  670. \xxx,yyy\z\wwwwww\r\s\5
  671. |    |   |   |    k c |
  672. |    |   |   |    | | |_The delay between each character in 10ms increments.
  673. |    |   |   |    | | 
  674. |    |   |   |    | |_ s = string; c = command
  675. |    |   |   |    |
  676. |    |   |   |    |_ r = replace character with the string or command
  677. |    |   |   |       k = generate string or command, but keep the original
  678. |    |   |   |           character.
  679. |    |   |   |
  680. |    |   |   |_ String to be generated, or command to be executed.
  681. |    |   |   
  682. |    |   |_ Character to be re-mapped. 
  683. |    |
  684. |    |_ List of qualifiers (see below), separated by commas.
  685. |
  686. |
  687. |_ Delimiter.
  688.  
  689.  
  690. NOTE: Any line that begins with an asterisk (*) will be treated as a comment.
  691.  
  692.  
  693. Delimiter
  694. ---------
  695.  
  696. A "\" is the character used to delimit fields. If you wish to include 
  697. one in the string, precede it with a "^".
  698.  
  699. Qualifiers
  700. ----------
  701.  
  702. This defines which keys must be pressed with the re-map character
  703. to generate the string or command. eg., you may want the qualifiers to be
  704. left shift and right alt. If no qualifiers are needed to trigger the re-map, 
  705. the statement would start with a "\\".
  706.  
  707. Multiple qualifiers are specified by separating them by commas: eg.,
  708. "lsh,lat,ctl".
  709.  
  710.  
  711.  
  712. The valid qualifiers are: (all in lower case)
  713.  
  714. lsh    Left shift.
  715. rsh    Right shift.
  716. clo    Caps lock.
  717. ctl    Control (CTRL).
  718. lal    Left alt.
  719. ral    Right alt.
  720. lam    Left Amiga.
  721. ram    Right Amiga.
  722.  
  723.  
  724. The above qualifiers must be specified in lower case.
  725.                      ~~~~
  726.  
  727. Character to be re-mapped.
  728. ------------------------
  729.  
  730. This field is either a single character - "w", for example - or
  731. a string of characters which represents a single character.
  732. If a single character is specified it must be in lower case; if you want
  733. the upper case character re-mapped you must use two statements with
  734. "lsh" and "rsh" qualifiers. This also applies to keys like "{", "!"
  735. etc. whose lower and upper case representations are different.  
  736.  
  737. Valid strings are: (in lower case)
  738.  
  739. f01    The function keys. 
  740. f02            |
  741. f03            |
  742. f04            |
  743. f05            |
  744. f06            |
  745. f07            |
  746. f08            |
  747. f09            |
  748. f10            V
  749.  
  750. hel     Help key.
  751. esc     Escape key.
  752. tab     Tab key.
  753. bsp     Backspace key.
  754. ret     Return key.
  755. del     Delete key.
  756. upa     Up arrow.
  757. lea     Left arrow.
  758. doa     Down arrow.
  759. ria     Right arrow.
  760. kp0     Key pad 0.
  761. kp1     Key pad 1.
  762. kp2     Key pad 2.
  763. kp3     Key pad 3.
  764. kp4     Key pad 4.
  765. kp5     Key pad 5.
  766. kp6     Key pad 6.
  767. kp7     Key pad 7.
  768. kp8     Key pad 8.
  769. kp9     Key pad 9.
  770. kp.     Key pad ..
  771. kp-     Key pad -.
  772. kpe     Key pad enter.
  773. kp)     Key pad ).
  774. kp(     Key pad (.
  775. kp/     Key pad /.
  776. kp+     Key pad +.
  777. arf1    Arp file requester. Colour 1. If specified alone, the selection
  778. arf2    Ditto, Colour 2               will be injected into the window
  779.                       at the next Left Mouse Button click.
  780.                        If specified with other characters, 
  781.                       will act as a symbolic variable; the
  782.                       selection will replace the variable
  783.                        in the command/string.
  784.  
  785. The above keys must be specified in lower case.
  786.                ~~~~
  787.  
  788.  
  789.  
  790. String
  791. ------
  792.  
  793. The string of characters which will replace the character to
  794. be re-mapped. 
  795.  
  796. Special keys (del, bsp, for example) may be inserted into the string.
  797. They are specified by preceding the key name with a "&". For example,
  798. "&del" would be delete, "&ret" would be return, etc. Any key listed above
  799. in the "Character to be re-mapped" section can be specified in this way (still
  800. in lower case).
  801.  
  802. Previous versions of the program allowed a limited set of control characters
  803. in the string by using the "^". This will still work. The characters
  804. which can be defined in this way are:
  805.  
  806.  
  807. ^[   Escape.
  808. ^h   Backspace.
  809. ^i   Tab.
  810. ^m   Return.
  811.  
  812. The "^" and "\" can be included in the string by preceding them
  813. with a "^".
  814.  
  815.  
  816. A character in a macro string may include a qualifier. 
  817. Any of the qualifiers listed above under "Qualifiers" are valid.
  818. The qualifier is preceded by a "%" and multiple qualifiers are
  819. separated by commas. Eg., 
  820.  
  821. "%lal,%ctla" 
  822.  
  823. (in lower case)  would specify LeftAlt+CTRL+a.
  824.  
  825. Multiple qualifiers should be separated by commas. This can be useful
  826. for entering data in a string gadget (a file requester, for example).
  827. The file name you want in the requester may be "myfile"; specifying
  828. "%ramxmyfile" in the string would clear the gadget before filling it
  829. with "myfile".
  830.  
  831.  
  832.  
  833. The string should appear in the active window.
  834.  
  835. Each statement can be up to 1000 characters long.
  836.  
  837.  
  838. Replace/Keep
  839. ------------
  840.  
  841.  
  842. An "r" causes the re-mapped character to be replaced with the
  843. string or command. A "k" will keep the re-mapped character.
  844.  
  845. This must be specified in lower case.
  846.  
  847.  
  848. String/Command
  849. --------------
  850.  
  851. An "s" will submit the string into the input stream: it should
  852. appear in the active window.
  853.  
  854. A "c" will execute the string as a command. A "^m" (CR) or "&ret" at the end
  855. of the command is not needed. The command will be launched from the clock
  856. task AT THE SAME PRIORITY AS THE CLOCK; the default clock priority is 2.
  857. Some programs do not run well at priority 2 -  eg Txed, Excellence, Blitz -
  858. since they use input handlers running at priority 0. To avoid this kind of
  859. problem either run the clock at priority 0 or use the ARP Arun command and
  860. set the priority of the new task to 0.
  861.  
  862.  
  863. This must be specified in lower case.
  864.  
  865.  
  866. Delay
  867. -----
  868.  
  869. ****************
  870. *    NOTE      *
  871. ****************
  872.  
  873. Version 4.06 and above contain improvements which, as far as I know, 
  874. eliminate the need to specify a delay. It is still supported, however.
  875.  
  876.  
  877. The delay value will delay each character by the value*15 milliseconds. Eg.,
  878. a value of 5 specifies 75 ms. 
  879.  
  880. The delay field can be between 0 and 9.
  881.  
  882. If the delay is omitted, a delay of 0 is assumed.
  883.  
  884. Examples
  885. ~~~~~~~~
  886.  
  887.  
  888. \\f01\run  >nil: <nil: ed\r\c
  889.  
  890. Will run ed . Notice that no qualifier was specified
  891. for the function key F1. The redirection to nil: is to prevent unwanted
  892. messages in the console window.
  893.  
  894.  
  895.  
  896.  
  897. \ctl,lsh\f01\dir df0:\r\c
  898.  
  899. When CTRL, left shift and F1 are depressed a dir df0: will execute and the
  900. result will appear in the window belonging to the cli which started ClockDJ.
  901. This would work only if ClockDJ has NOT been started with 'RunBack'.
  902.  
  903.  
  904.  
  905. \lal\t\run >nil: <nil: Terminals:gt/gt\r\c
  906.  
  907. Run GT when left-alt t is depressed.
  908.  
  909.  
  910.  
  911.  
  912. \lal\esc\newcli <nil: >nil:\r\c
  913.  
  914. Start a new cli when Left-alt esc is depressed.
  915.  
  916.  
  917.  
  918.  
  919. \lal\n\David Jenkins\r\s\5
  920.  
  921. Submit the string when left-alt n is depressed and insert a 50 ms delay
  922. between each character.
  923.  
  924.  
  925.  
  926. \lal\m\Inter-Office Correspondence&ret&retFrom:  David Jenkins&ret&retTo:&ret&retSubject:&ret&ret______________________________________________________________________________&ret&ret\r\s\5
  927.  
  928. Submit the string when left-alt m is depressed and insert a 50 ms delay
  929. between each character..
  930.  
  931.  
  932. \clo\`\~\r\s
  933. \clo\1\!\r\s
  934.  
  935.  
  936. Convert Caps lock "`" and "1" to "~" and "!".
  937.  
  938.  
  939. \lal\f\%ramxdf0:file1\r\s
  940.  
  941.  
  942. Is useful for putting a string into a requester. The "%ramx" will submit a
  943. Right Amiga-x which will clear the string gadget before submitting the
  944. "file1" string.
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.                               AREXX Macros
  954.                               ~~~~~~~~~~~~
  955.  
  956.     ClockDJ versions 4.00 and above contain an ARexx port.  The clock
  957. is  an  ARexx  host  and will accept commands from an ARexx program; the
  958. commands  are  listed below.  If a result is expected it will be returned
  959. in  the  special  ARexx  variable  'result';  any commands which return a
  960. result should have a 'options results' statement in the program.
  961.  
  962.  
  963. Title of ClockDJ
  964. ----------------
  965.  
  966.     The clock window has a title of 'ClockDJ' (case sensitive);
  967. you can use this title in some of the ARexx macros. For an example of this
  968. take a look at Move.Rexx and Move2.Rexx.
  969.  
  970.  
  971. Host Name
  972. ---------
  973.  
  974.     The host name of ClockDJ is CLOCKDJ (in capitals).
  975.  
  976.  
  977. Errors
  978. ------
  979.  
  980.     Errors are reported by setting a return code (the RC variable).
  981.  
  982. A return code of 20 is set for an unrecognized command.
  983.  
  984. A  return  code  of 10 is set for an invalid parameter (an invalid window
  985. address, for example).
  986.  
  987.  
  988. Commands
  989. --------
  990.  
  991. NOTE:  when executing commands which manipulate windows (like MOVE), be
  992. careful  not  to submit too many requests for the same window without a
  993. pause  between  the  requests.   Intuition  gets upset if it receives a
  994. request  for  a window before it has acted on the previous request; the
  995. ARexx   function  'delay'  (in  rexxsupport.library)  can  be  used  to
  996. accomplish this:  eg., 'call delay 5'.
  997.  
  998.  
  999.  
  1000.  
  1001.     ACTIVATEWINDOW    address        
  1002.  
  1003.  
  1004. Activate the window with this address. The window may be on any screen.
  1005.  
  1006.  
  1007.                            *******************
  1008.  
  1009.      COLOUR    nn    
  1010.  
  1011.  
  1012. Change the colour of the clock display to nn (0-11).  Note: nn
  1013. corresponds to a colour item menu selection
  1014.  
  1015.  
  1016.                            *******************
  1017.  
  1018.  
  1019.      CHIP         
  1020.  
  1021. Change the clock to display chip/fast memory.
  1022.  
  1023.  
  1024.                            *******************
  1025.  
  1026.  
  1027.      DELAY    value        
  1028.  
  1029.  
  1030. Specify an inter-character  delay value in microseconds for injected data.
  1031. The delay value remains in effect for all injected data; if you want to
  1032. reset it to zero, submit a 'delay 0' command.
  1033.  
  1034.                            *******************
  1035.  
  1036.  
  1037.      FILEREQUESTER
  1038.  
  1039.  
  1040. Call the Arp file requester.  The full pathname of the selected file will
  1041. be  returned  in  'result'.   If  'cancel'  is  selected  on the Arp file
  1042. requester, a null string will be returned in 'result'.
  1043.  
  1044.  
  1045.                            *******************
  1046.  
  1047.  
  1048.     SETARPDIR dirname 
  1049.    
  1050. will set the initial directory string in the  Arp file requester
  1051. to dirname.
  1052.  
  1053.  
  1054.                            *******************
  1055.  
  1056.  
  1057.     SETARPFILE filename 
  1058.    
  1059. will set the initial file string in the  Arp file requester
  1060. to filename.
  1061.  
  1062.  
  1063.  
  1064.                            *******************
  1065.  
  1066.  
  1067.    SETARPTITLE title 
  1068.    
  1069. will set the title in the  Arp file requester.
  1070.  
  1071.  
  1072.                            *******************
  1073.  
  1074.  
  1075.    SETARPCOLOUR number 
  1076.    
  1077.   will set the colour of the  Arp file requester. The number can
  1078.   be 1 or 2.
  1079.  
  1080.  
  1081.                            *******************
  1082.  
  1083.    POPREQUESTER text
  1084.  
  1085.   will put a requester displaying the text on the top screen with 
  1086.   a YES/NO choice. The selection is passed back in RESULT as YES or NO.
  1087.  
  1088.  
  1089.                            *******************
  1090.  
  1091.  
  1092.      GETACTIVEWINDOW      
  1093.  
  1094.  
  1095. Gets the active window address and returns it in 'result'.
  1096.  
  1097.  
  1098.                            *******************
  1099.  
  1100.  
  1101.     GETNEXTWINDOW    address        
  1102.  
  1103.  
  1104. Get  the  address  of  the  next window on a screen.  The parameter is an
  1105. address of a window.
  1106.  
  1107.                            *******************
  1108.  
  1109.  
  1110.  
  1111.      GETPOINTERWINDOW          
  1112.  
  1113.  
  1114. Get the address of the window under the pointer. The address is returned
  1115. in 'result'.
  1116.  
  1117.  
  1118.                            *******************
  1119.  
  1120.  
  1121.     GETSCREEN    title
  1122.  
  1123.  
  1124.  
  1125. Get  the  screen  address  from  the  title.  Note that the title is case
  1126. sensitive.  The address is returned in 'result'.
  1127.  
  1128.  
  1129.                            *******************
  1130.  
  1131.     
  1132.     GETTITLEOFSCREEN address    
  1133.  
  1134.  
  1135. Get a screen title from a screen address. The title is returned in
  1136. 'result'.  
  1137.  
  1138.  
  1139.                            *******************
  1140.  
  1141.  
  1142.      GETTOPSCREEN
  1143.  
  1144.  
  1145. Get the address of the top screen. The address is returned in 'result'.
  1146.  
  1147.  
  1148.                            *******************
  1149.  
  1150.  
  1151.      GETWINDOW    title
  1152.  
  1153.  
  1154. Get  the  address of the window with this title.  The address is returned
  1155. in  'result'.  Note that 'title' is case sensitive; make sure you specify
  1156. the exact title.  The window can be on any screen.
  1157.  
  1158.  
  1159.                            *******************
  1160.  
  1161.  
  1162.  
  1163.      HIDEWINDOW    address        
  1164.  
  1165.  
  1166. Hide the window with the specified address.
  1167.  
  1168.  
  1169.                            *******************
  1170.  
  1171.  
  1172.      INJECT    CLICK    data    
  1173.  
  1174.  
  1175. Injects  data  into  the window where you click the left mouse button.  A
  1176. small  window will appear on the top screen asking you to click where you
  1177. want  the  data  injected.   The  data to be injected is specified by the
  1178. second  operand.  If you precede the data by a hex '01' ('01'x in ARexx),
  1179. a Right Amiga+x will be inserted to clear a string requester).
  1180.  
  1181.  
  1182.                            *******************
  1183.  
  1184.  
  1185.      INJECT    ACTIVE    data
  1186.  
  1187.  
  1188. Injects data into the active window. The data to be injected is specified
  1189. by the second operand.
  1190.  
  1191.  
  1192.                            *******************
  1193.  
  1194.  
  1195.      INJECT    address    data
  1196.  
  1197.  
  1198. Injects  data into the window with the the address specified in the first
  1199. operand.  The data is specified by the second operand.
  1200.  
  1201.  
  1202.                            *******************
  1203.  
  1204.  
  1205.      LOADKEYS filename
  1206.  
  1207.  
  1208. Load new key definitions from the specified file name.
  1209.  
  1210.  
  1211.                            *******************
  1212.  
  1213.  
  1214.     MOVEWINDOW    address x-position y-position    
  1215.  
  1216.  
  1217. Move  a  window  to  a  new  position.   The  first parameter is a window
  1218. address,  the  second  is the X position and the third is the Y position.
  1219. If you attempt to move a window outside a screen's limits a return code of
  1220. 10 will be set.
  1221.  
  1222.  
  1223.                            *******************
  1224.  
  1225.  
  1226.     POPUP        OFF        
  1227.             WINDOWS
  1228.             SCREENS
  1229.  
  1230.  
  1231. Set the popup status of the clock.
  1232.  
  1233.  
  1234.                            *******************
  1235.  
  1236.  
  1237.     QUALIFIER  'nnnn'x  
  1238.  
  1239.  
  1240. Set  a key qualifier for injected data.  The qualifier is 2 hex bytes and
  1241. the values are explained below. This feature is useful if you want to
  1242. inject,  for  example,  a  Right Amiga+Right Shift+Return.  The qualifier
  1243. remains  set  for  all injected data, so you must reset it.  A normal key
  1244. depression has a qualifier of '8000'x (relative mouse).
  1245.  
  1246. NOTE:   this  is  only  effective for data injected with INJECT ACTIVE or
  1247. INJECT address.  It will not work with INJECT CLICK.
  1248.  
  1249.  
  1250.  
  1251. Qualifiers
  1252. ----------
  1253.  
  1254. IEQUALIFIER_LSHIFT    EQU   $0001        Left shift
  1255. IEQUALIFIER_RSHIFT    EQU   $0002        Right Shift
  1256. IEQUALIFIER_CAPSLOCK    EQU   $0004        Caps Lock
  1257. IEQUALIFIER_CONTROL    EQU   $0008        CTRL
  1258. IEQUALIFIER_LALT    EQU   $0010        Left Alt
  1259. IEQUALIFIER_RALT    EQU   $0020        Right Alt
  1260. IEQUALIFIER_LCOMMAND    EQU   $0040        Left Amiga
  1261. IEQUALIFIER_RCOMMAND    EQU   $0080        Right Amiga
  1262. IEQUALIFIER_RELATIVEMOUSE     EQU   $8000   Reset to this value.
  1263.  
  1264.  
  1265. NB. OR the bits together to set a qualifier: eg: '8022'x is Right shift+
  1266.     Right alt+Relative mouse.  You should always include the relative mouse 
  1267.     bit.
  1268.  
  1269.  
  1270.                            *******************
  1271.  
  1272.  
  1273.      RETRIEVEWINDOW     address    
  1274.  
  1275.  
  1276. Retrieve the hidden window with this address.
  1277.  
  1278.  
  1279.                            *******************
  1280.  
  1281.  
  1282.      SCREENFLIP
  1283.  
  1284.  
  1285. Push the top screen to the bottom.
  1286.  
  1287.  
  1288.                            *******************
  1289.  
  1290.  
  1291.     SCREENFORWINDOW    address    
  1292.  
  1293.  
  1294.  
  1295. Get  the address of the screen which contains this window.  The parameter
  1296. is a window address. The address is returned in 'result'.
  1297.  
  1298.  
  1299.                            *******************
  1300.  
  1301.  
  1302.     SCREENTOFRONT    address        
  1303.  
  1304.  
  1305.  
  1306. Bring the screen with this address to the front.
  1307.  
  1308.  
  1309.                            *******************
  1310.  
  1311.  
  1312.      TOTAL             
  1313.  
  1314. Change the clock to display total memory.
  1315.  
  1316.  
  1317.                            *******************
  1318.  
  1319.  
  1320.  
  1321.     WINDOWTOBACK    address        
  1322.  
  1323.  
  1324.  
  1325. Push the window with this address to the back.
  1326.  
  1327.  
  1328.                            *******************
  1329.  
  1330.  
  1331.     WINDOWTOFRONT    address
  1332.  
  1333.  
  1334.  
  1335.  
  1336. Bring the window with this address to the front.
  1337.  
  1338.  
  1339.  
  1340.  
  1341.                         David Jenkins.
  1342.